home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / LIBRARY / PBLIB1 / PROGS / TMAP.DOC < prev    next >
Text File  |  1993-12-30  |  783b  |  19 lines

  1.  
  2. Procedure DoHelp;
  3.      begin
  4.      writeln(f,'TMAP - Placed in the PUBLIC DOMAIN by Howard Richoux 11/90');
  5.      writeln(f,'   Program to read TURBO .MAP files and do some translating.');
  6.      writeln(f,'');
  7.      writeln(f,'syntax.');
  8.      writeln(f,'  TMAP <filespec> <level> <options>');
  9.      writeln(f,'');
  10.      writeln(f,'     <filespec>   - DOS filespec such as *.map');
  11.      writeln(f,'                   ''xyz'' would mean ''xyz.map''');
  12.      writeln(f,'     <level>      - 1,2,3    1 = 1 line summary');
  13.      writeln(f,'                             2 = segments');
  14.      writeln(f,'                             3 = publics (procs&data)');
  15.      writeln(f,'     <options>    - overrides .cfg file (see tmap.cfg)');
  16.      writeln(f,'');
  17.      halt(0);
  18.      end;
  19.